I notice that code that was working before, is no longer working.
Module m = current
bool FilterStatus = applyingFiltering (m)
if (FilterStatus)
{
errorBox "Filter On"
halt //terminates execution
} // end if (FilterStatus)
print "FilterStatus " FilterStatus "\n"
Gedinfo - Wed Jun 13 16:27:16 EDT 2012 |
Re: applyingFiltering() no longer works as expected. applyingFiltering Declaration bool applyingFiltering(Module) Operation Returns a boolean indicating whether filtering is turned on in the module explorer for the specified module.
|
Re: applyingFiltering() no longer works as expected. Returns false when a module is not filtered, true when it is being filtered. |
Re: applyingFiltering() no longer works as expected. Gedinfo - Thu Jun 14 10:30:16 EDT 2012 So "applyingFiltering" would be the same as "filtering" when you "filter on; applyFiltering" -Louie |